home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmIsX
- BorderStyle = 4 'Fixed ToolWindow
- Caption = "IsX"
- ClientHeight = 4485
- ClientLeft = 1890
- ClientTop = 3270
- ClientWidth = 7485
- Height = 4890
- Left = 1830
- MaxButton = 0 'False
- MDIChild = -1 'True
- ScaleHeight = 4485
- ScaleWidth = 7485
- ShowInTaskbar = 0 'False
- Top = 2925
- Width = 7605
- Begin Threed.SSPanel SSPanel2
- Align = 2 'Align Bottom
- Height = 465
- Left = 0
- TabIndex = 1
- Top = 4020
- Width = 7485
- _Version = 65536
- _ExtentX = 13203
- _ExtentY = 820
- _StockProps = 15
- BackColor = 12632256
- Begin VB.TextBox Text1
- Height = 285
- Left = 1440
- TabIndex = 2
- Tag = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- Top = 90
- Width = 5055
- End
- Begin VB.Label Label1
- Caption = "&Enter a test string"
- Height = 255
- Left = 90
- TabIndex = 4
- Top = 120
- Width = 1275
- End
- Begin Threed.SSCommand SSCommand2
- Height = 285
- Left = 6570
- TabIndex = 3
- Top = 90
- Width = 825
- _Version = 65536
- _ExtentX = 1455
- _ExtentY = 503
- _StockProps = 78
- Caption = "&Reset"
- BevelWidth = 1
- Outline = 0 'False
- End
- End
- Begin Threed.SSPanel SSPanel1
- Align = 1 'Align Top
- Height = 480
- Left = 0
- TabIndex = 5
- Top = 0
- Width = 7485
- _Version = 65536
- _ExtentX = 13203
- _ExtentY = 847
- _StockProps = 15
- ForeColor = -2147483640
- BackColor = 12632256
- Begin VB.ComboBox cmb_Function
- Height = 315
- Left = 1365
- TabIndex = 6
- Top = 90
- Width = 4785
- End
- Begin Threed.SSCommand cmdNP
- Height = 300
- Index = 1
- Left = 7140
- TabIndex = 10
- Top = 90
- Width = 255
- _Version = 65536
- _ExtentX = 450
- _ExtentY = 529
- _StockProps = 78
- Caption = ">"
- BevelWidth = 1
- Font3D = 3
- RoundedCorners = 0 'False
- Outline = 0 'False
- End
- Begin Threed.SSCommand cmdNP
- Height = 300
- Index = 0
- Left = 6300
- TabIndex = 9
- Top = 90
- Width = 255
- _Version = 65536
- _ExtentX = 450
- _ExtentY = 529
- _StockProps = 78
- Caption = "<"
- BevelWidth = 1
- Font3D = 3
- RoundedCorners = 0 'False
- Outline = 0 'False
- End
- Begin VB.Label Label2
- Caption = "&Select a function"
- Height = 255
- Left = 90
- TabIndex = 8
- Top = 120
- Width = 1275
- End
- Begin Threed.SSCommand SSCommand1
- Default = -1 'True
- Height = 300
- Left = 6615
- TabIndex = 7
- Top = 90
- Width = 465
- _Version = 65536
- _ExtentX = 820
- _ExtentY = 529
- _StockProps = 78
- Caption = "&Go"
- BevelWidth = 1
- RoundedCorners = 0 'False
- Outline = 0 'False
- End
- End
- Begin VB.Label lbl_Result
- Appearance = 0 'Flat
- BackColor = &H80000005&
- BackStyle = 0 'Transparent
- ForeColor = &H80000008&
- Height = 3270
- Left = 90
- TabIndex = 0
- Top = 630
- Width = 7305
- End
- Attribute VB_Name = "frmIsX"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Option Base 1
- Private Const Iteration = 250
- Dim IsLoaded As Integer
- Dim TimerStartOk As Integer
- Dim TimerCloseOk As Integer
- Dim TimerHandle As Integer
- Dim TimerValue As Long
- Private Sub cmdNP_Click(Index As Integer)
- Call sub_NextPrev(cmb_Function, Index)
- End Sub
- Private Sub cmb_Function_Click()
- If (IsLoaded = False) Then Exit Sub
- Call cDisableFI(mdiT2W.Picture1)
- lbl_Result = ""
- DoEvents
- Select Case cmb_Function.ListIndex
- Case 0
- Call TestIsX
- End Select
- DoEvents
- Call cEnableFI(mdiT2W.Picture1)
- End Sub
- Private Sub Form_Activate()
- mdiT2W.Label2.Caption = cInsertBlocks(mdiT2W.Label2.Tag, "" & Iteration)
- End Sub
- Private Sub Form_Load()
- IsLoaded = False
- Show
- Text1.Text = Text1.Tag + LCase$(Text1.Tag)
- Call sub_Load_Combo(cmb_Function, T2WDirInst + "_isx.t2w")
- IsLoaded = True
- End Sub
- Private Sub SSCommand1_Click()
- Call cmb_Function_Click
- End Sub
- Private Sub TestIsX()
- Dim intResult As Integer
- Dim strResult As String
- Dim strDisplay As String
- Dim i As Integer
- Dim Str1 As String
- strResult = ""
- strDisplay = ""
- Str1 = Text1.Text
- strDisplay = "[" & Str1 & "] is " & vbCrLf & vbCrLf
- strDisplay = strDisplay & IIf(cIsDigit(Str1), "Digit", " not Digit") & vbCrLf
- strDisplay = strDisplay & IIf(cIsXdigit(Str1), "XDigit", " not XDigit") & vbCrLf
- strDisplay = strDisplay & IIf(cIsAlpha(Str1), "Alpha", " not Alpha") & vbCrLf
- strDisplay = strDisplay & IIf(cIsLower(Str1), "Lower", " not Lower") & vbCrLf
- strDisplay = strDisplay & IIf(cIsUpper(Str1), "Upper", " not Upper") & vbCrLf
- strDisplay = strDisplay & IIf(cIsAlnum(Str1), "Alnum", " not Alnum") & vbCrLf
- strDisplay = strDisplay & IIf(cIsUpper(Str1), "Upper", " not Upper") & vbCrLf
- strDisplay = strDisplay & IIf(cIsSpace(Str1), "Space", " not Space") & vbCrLf
- strDisplay = strDisplay & IIf(cIsPunct(Str1), "Punct", " not Punct") & vbCrLf
- strDisplay = strDisplay & IIf(cIsAscii(Str1), "Ascii", " not Ascii") & vbCrLf
- strDisplay = strDisplay & IIf(cIsCsym(Str1), "Csym", " not Csym") & vbCrLf
- strDisplay = strDisplay & IIf(cIsCsymf(Str1), "Csymf", " not Csymf") & vbCrLf
- strDisplay = strDisplay & IIf(cIsISBN(Str1), "ISBN", " not ISBN") & vbCrLf & vbCrLf
-
- lbl_Result = strDisplay
- 'time the function
- TimerHandle = cTimerOpen()
- TimerStartOk = cTimerStart(TimerHandle)
- For i = 1 To Iteration
- intResult = cIsDigit(Str1)
- Next i
- mdiT2W.pnl_Timer = cTimerRead(TimerHandle)
- TimerCloseOk = cTimerClose(TimerHandle)
- End Sub
- Private Sub SSCommand2_Click()
- Text1.Text = Text1.Tag + LCase$(Text1.Tag)
- Call SSCommand1_Click
- End Sub
-